home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / time.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-25  |  202 b   |  13 lines

  1. #include "amiga.h"
  2. #include "timeconvert.h"
  3.  
  4. time_t time(time_t *clock)
  5. {
  6.   struct timeval now;
  7.  
  8.   if (_gettime(&now) < 0) return -1;
  9.   if (clock) *clock = now.tv_secs;
  10.  
  11.   return (time_t)now.tv_secs;
  12. }
  13.